home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / rbpairen.jav < prev    next >
Text File  |  1995-10-14  |  1KB  |  55 lines

  1. /*
  2.   File: RBPairEnumeration.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   24Sep95  dl@cs.oswego.edu   Create from collections.java  working file
  11.   13Oct95  dl                 Changed protection statuses
  12.  
  13. */
  14.   
  15. package collections;
  16.  
  17. import java.util.Enumeration;
  18. import java.util.NoSuchElementException;
  19.  
  20. /**
  21.  *
  22.  *
  23.  * Enumerator for paircollections based on RBPairs
  24.  * @author Doug Lea
  25.  * @version 0.93
  26.  *
  27.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  28. **/
  29. final class RBPairEnumeration extends CEImpl {
  30.   private RBPair cur_;
  31.   private boolean useKeys_;
  32.  
  33.   public RBPairEnumeration(UpdatableCollection c, RBPair t,boolean useKeys) { 
  34.     super(c);
  35.     if (t == null)
  36.       cur_ = t;
  37.     else
  38.       cur_ = (RBPair)(t.leftmost());
  39.     useKeys_ = useKeys;
  40.   }
  41.  
  42. /**
  43.  * Implements java.util.Enumeration.nextElement.
  44.  * @see java.util.Enumeration#nextElement
  45. **/
  46.   public Object nextElement() { 
  47.     decRemaining();
  48.     Object v = (useKeys_)? cur_.key(): cur_.element(); 
  49.     cur_ = (RBPair)(cur_.successor());
  50.     return v;
  51.   }
  52.  
  53. }
  54.  
  55.